home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / dev / c / vbcc.lha / vbcc / targets / ppc-warpos / include / setjmp.h < prev    next >
C/C++ Source or Header  |  2001-04-28  |  192b  |  14 lines

  1. #pragma begin_header
  2. /* setjmp.h - PowerPC */
  3.  
  4. #ifndef __SETJMP_H
  5. #define __SETJMP_H 1
  6.  
  7. typedef int jmp_buf[24];
  8.  
  9. int setjmp (jmp_buf);
  10. void longjmp (jmp_buf, int);
  11.  
  12. #endif
  13. #pragma end_header
  14.